home *** CD-ROM | disk | FTP | other *** search
- { This is a sample form. The form can be used by the developer to maintain a list of available users,
- data on the current page of each user and basically to show visually to the web master any data
- relevant to him. }
- unit uServerForm;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
-
- type
- TfrmAspServer = class(TForm)
- Label1: TLabel;
- Label2: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- frmAspServer: TfrmAspServer;
-
- implementation
-
- {$R *.DFM}
-
- end.
-